home *** CD-ROM | disk | FTP | other *** search
/ Mission to McDonaldLand / Mission To McDonaldLand.iso / code.cst / 00066_Script_DIcamera < prev    next >
Text File  |  1998-10-29  |  348b  |  16 lines

  1. on mouseDown me
  2.   global camera
  3.   if camera = 1 then play movie "DIPrint"
  4.   if camera = 0 then
  5.     puppetSound 1, "camtalk"
  6.     set the member of sprite the spritenum of me = "takepic2"
  7.     set camera = 1
  8.   end if
  9. end
  10.  
  11. on mouseleave me
  12.   global camera
  13.   set camera = 0
  14.   set the member of sprite the spritenum of me = "takepic1"
  15. end
  16.